NDP APP README FILE
By Marco Rodriguez

The NDP app directory sits within the nextcloud-docker-dev/workspace/server/apps-extra/

The app contains 8 subdirectories each with their own subdirectories and files:
	- appinfo
		- info.xml //Contains the necessary metadata needed by the Nextcloud API
		- routes.php //Contains the necessary routes needed for the backend
	- css
		-main.css //Contains the necessary CSS of the application
	- img
		- *.svg //These are the various icons for the application
		- reports //Contains all of the reports created by NDP
	- js // contains all of the js compiled by NODEJS
	- lib
		- AppInfo
			- Application.php //Used to bootstrap the application
		- Controller
			- PageController.php //responsible for handling requests, interacting with models, and preparing data for the view.
	- LICENSES // Contains the open-source licenses
	- node_modules // has all of the node modules
	- src
		- mainScript.js //The main js script
	- templates
		- myMainTemplate.php //Used for defining and managing templates
	- tests //Directory automatically created by nextcloud app.

The rest of the files are files that are automatically created when creating a skeleton app using Nextcloud's API

To compile and run the JS code first install npm within the ndp directory and run npm run build
